]> git.lizzy.rs Git - rust.git/blobdiff - Contributing.md
Move Indent and Shape to shape.rs from lib.rs
[rust.git] / Contributing.md
index 7c66d27da410442ecc74b22acd2db65cd235b4e2..730cefdca45490bdbc12d1dc01d330d23ee883f0 100644 (file)
@@ -207,6 +207,6 @@ handling of configuration options is done in [src/config.rs](src/config.rs). Loo
 `create_config!` macro at the end of the file for all the options. The rest of
 the file defines a bunch of enums used for options, and the machinery to produce
 the config struct and parse a config file, etc. Checking an option is done by
-accessing the correct field on the config struct, e.g., `config.max_width`. Most
+accessing the correct field on the config struct, e.g., `config.max_width()`. Most
 functions have a `Config`, or one can be accessed via a visitor or context of
 some kind.