@@ -57,7 +57,7 @@ This will:
5757
5858## Initializing a Codebase
5959
60- Instantiating a [ ` Codebase ` ] ( /api-reference/core/Codebase ) will automatically parse a codebase and make it available for manipulation.
60+ Instantiating a [ Codebase] ( /api-reference/core/Codebase ) will automatically parse a codebase and make it available for manipulation.
6161
6262``` python
6363from codegen import Codebase
@@ -83,10 +83,10 @@ Let's explore the codebase we just initialized.
8383
8484Here are some common patterns for code navigation in Codegen:
8585
86- - Iterate over all [ ` Functions ` ] ( /api-reference/core/Function ) with [ ` Codebase.functions ` ] ( /api-reference/core/Codebase#functions )
87- - View class inheritance with [ ` Class.superclasses ` ] ( /api-reference/core/Class#superclasses )
88- - View function call-sites with [ ` Function.call_sites ` ] ( /api-reference/core/Function#call-sites )
89- - View function usages with [ ` Function.usages ` ] ( /api-reference/core/Function#usages )
86+ - Iterate over all [ Functions] ( /api-reference/core/Function ) with [ Codebase.functions] ( /api-reference/core/Codebase#functions )
87+ - View class inheritance with [ Class.superclasses] ( /api-reference/core/Class#superclasses )
88+ - View function call-sites with [ Function.call_sites] ( /api-reference/core/Function#call-sites )
89+ - View function usages with [ Function.usages] ( /api-reference/core/Function#usages )
9090
9191``` python
9292# Print overall stats
@@ -175,8 +175,8 @@ codebase.commit()
175175
176176<Warning >
177177 In order to commit changes to your filesystem, you must call
178- [ ` Codebase .commit()` ] ( /api-reference/core/Codebase#commit ) . Learn more about
179- [ Commit and Reset ] ( /building-with-codegen/commit-and-reset ) .
178+ [ codebase .commit()] ( /api-reference/core/Codebase#commit ) . Learn more about
179+ [ commit() and reset() ] ( /building-with-codegen/commit-and-reset ) .
180180</Warning >
181181
182182### Finding Specific Content
0 commit comments