updated vendor

This commit is contained in:
2026-06-16 08:02:19 +02:00
parent 2f7f99d3f0
commit 77299d0c64
1283 changed files with 67302 additions and 208958 deletions
+4 -6
View File
@@ -1,7 +1,5 @@
//
// Copyright (c) 2025 The go-yaml Project Contributors
// Copyright 2025 The go-yaml Project Contributors
// SPDX-License-Identifier: Apache-2.0
//
// Package yaml implements YAML 1.1/1.2 encoding and decoding for Go programs.
//
@@ -81,14 +79,14 @@
//
// Or use version-specific option presets for consistent formatting:
//
// yaml.NewDumper(w, yaml.V3)
// yaml.NewDumper(w, yaml.WithV3Defaults())
//
// Options can be combined and later options override earlier ones:
//
// // Start with v3 defaults, then override indent
// yaml.NewDumper(w,
// yaml.V3,
// yaml.WithIndent(4),
// yaml.WithV3Defaults(),
// yaml.WithIndent(2),
// )
//
// Load options from YAML configuration files: