Skip to content

Commit 629eb65

Browse files
authored
Fix(docs) incorrect “ap” Abbreviation Rendering as Lowercase (#8991)
1 parent c3cad96 commit 629eb65

File tree

1 file changed

+4
-4
lines changed
  • crates/cairo-lang-sierra-to-casm/src/environment

1 file changed

+4
-4
lines changed

crates/cairo-lang-sierra-to-casm/src/environment/mod.rs

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ pub enum EnvironmentError {
2323

2424
#[derive(Clone, Copy, Debug, Eq, PartialEq)]
2525
pub enum ApTrackingBase {
26-
/// The base is a statement that enabled ap tracking.
26+
/// The base is a statement that enabled AP tracking.
2727
Statement(StatementIdx),
2828
/// The base is the beginning of the function.
2929
FunctionStart,
@@ -33,17 +33,17 @@ pub enum ApTrackingBase {
3333
pub enum ApTracking {
3434
Disabled,
3535
Enabled {
36-
/// The ap change between `base` and the current statement.
36+
/// The AP change between `base` and the current statement.
3737
ap_change: usize,
38-
/// The statement that enabled the ap tracking.
38+
/// The statement that enabled the AP tracking.
3939
base: ApTrackingBase,
4040
},
4141
}
4242

4343
/// Part of the program annotations that libfuncs may access as part of their run.
4444
#[derive(Clone, Debug)]
4545
pub struct Environment {
46-
/// The ap tracking information of the current statement.
46+
/// The AP tracking information of the current statement.
4747
pub ap_tracking: ApTracking,
4848
/// The size of the continuous known stack.
4949
pub stack_size: usize,

0 commit comments

Comments
 (0)