Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for checkFragmentFile (0.19 sec)

  1. src/cmd/vendor/golang.org/x/build/relnote/relnote.go

    	}
    	var errs []error
    	for _, fn := range filenames {
    		// Use path.Join for consistency with io/fs pathnames.
    		fn = path.Join(mcDir, fn)
    		// TODO(jba): check that the file mentions each feature?
    		if err := checkFragmentFile(docFS, fn); err != nil {
    			errs = append(errs, fmt.Errorf("%s: %v\nSee doc/README.md for more information.", path.Join(docRoot, fn), err))
    		}
    	}
    	return errors.Join(errs...)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 12.7K bytes
    - Viewed (0)
Back to top