Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update file-system.md #253

Merged
merged 2 commits into from Jun 25, 2014
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/authoring/file-system.md
Expand Up @@ -53,6 +53,6 @@ Our goal however is to eventually deprecate these legacy methods. If you find mi

## Writing existing files

Updating an existing file is not always a simple task. The most reliable way to do so is to parse the file AST (_asynchronous syntax tree_) and edit it. The issue here is that playing with AST is quite verbose and quite hard to grasp.
Updating an existing file is not always a simple task. The most reliable way to do so is to parse the file AST ( [abstract syntax tree](http://en.wikipedia.org/wiki/Abstract_syntax_tree) ) and edit it. The issue here is that playing with AST is quite verbose and quite hard to grasp.

To help simplify such case, Yeoman provide some common helper methods. Refer to the [API documentation](http://yeoman.github.io/generator/wiring.html) for the list of available methods.