Skip to content

Commit

Permalink
[doc] Fix is is typo
Browse files Browse the repository at this point in the history
Signed-off-by: Douglas Reis <[email protected]>
  • Loading branch information
engdoreis committed Mar 30, 2023
1 parent 57c0ce6 commit 2895f4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion doc/contributing/style_guides/asm_coding_style.md
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ After the prefix, labels should be `snake_case` like other symbols.

This advice applies specifically to `.S` files, as well as globally-scoped assembly in `.c` and `.cc` files.

While this is is already implicit, we only use the `.S` extension for assembly files; not `.s` or `.asm`. Note that `.s` actually means something else; `.S`
While this is already implicit, we only use the `.S` extension for assembly files; not `.s` or `.asm`. Note that `.s` actually means something else; `.S`
files have the preprocessor run on them; `.s` files do not.

### Indentation
Expand Down
2 changes: 1 addition & 1 deletion hw/ip/lc_ctrl/rtl/lc_ctrl.sv
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ module lc_ctrl
.hw2reg ( tap_hw2reg ),
// SEC_CM: BUS.INTEGRITY
// While the TAP does not have bus integrity, it does have a WE checker
// that feeds into intg_err_o - hence this is is wired up to the fatal_bus_integ_error.
// that feeds into intg_err_o - hence this is wired up to the fatal_bus_integ_error.
.intg_err_o( fatal_bus_integ_error_tap_d ),
.devmode_i ( 1'b1 )
);
Expand Down
2 changes: 1 addition & 1 deletion sw/device/lib/dif/dif_rv_timer.h
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ typedef struct dif_rv_timer_tick_params {
* respectively.
*
* For example, if the clock frequency is 50 MHz, and the desired tick
* period is is 1 microsecond, i.e, a tick frequency of 1 MHz, then the
* period is 1 microsecond, i.e, a tick frequency of 1 MHz, then the
* prescaler should be:
*
* (50 * 10^6) * (1 * 10^-6) - 1 = 49
Expand Down

0 comments on commit 2895f4a

Please sign in to comment.