Skip to content

Commit 0a76d7b

Browse files
committed
Fix spelling mistakes in documentation.
1 parent d2459b6 commit 0a76d7b

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

lib/ronin/code/asm/archs/amd64.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Code
2525
module ASM
2626
module Archs
2727
#
28-
# Contains AMD64 Archtecture information.
28+
# Contains AMD64 Architecture information.
2929
#
3030
module AMD64
3131
include X86

lib/ronin/code/asm/archs/x86.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ module Code
2525
module ASM
2626
module Archs
2727
#
28-
# Contains X86 Archtecture information.
28+
# Contains X86 Architecture information.
2929
#
3030
module X86
3131
# Default word size

lib/ronin/code/asm/program.rb

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ def stack_push(value)
322322
# Generic method for popping off the stack.
323323
#
324324
# @param [Symbol] name
325-
# The name of the reigster.
325+
# The name of the register.
326326
#
327327
# @abstract
328328
#
@@ -333,7 +333,7 @@ def stack_pop(name)
333333
# Generic method for clearing a register.
334334
#
335335
# @param [Symbol] name
336-
# The name of the reigster.
336+
# The name of the register.
337337
#
338338
# @abstract
339339
#
@@ -344,7 +344,7 @@ def register_clear(name)
344344
# Generic method for setting a register.
345345
#
346346
# @param [Symbol] name
347-
# The name of the reigster.
347+
# The name of the register.
348348
#
349349
# @param [Register, ImmediateOperand, Integer] value
350350
# The new value for the register.
@@ -358,7 +358,7 @@ def register_set(name,value)
358358
# Generic method for saving a register.
359359
#
360360
# @param [Symbol] name
361-
# The name of the reigster.
361+
# The name of the register.
362362
#
363363
# @abstract
364364
#
@@ -369,7 +369,7 @@ def register_save(name)
369369
# Generic method for loading a register.
370370
#
371371
# @param [Symbol] name
372-
# The name of the reigster.
372+
# The name of the register.
373373
#
374374
# @abstract
375375
#

lib/ronin/code/asm/register.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def +(offset)
7171
end
7272

7373
#
74-
# Substracts from the value within the register and dereferences the
74+
# Subtracts from the value within the register and dereferences the
7575
# address.
7676
#
7777
# @param [Integer] offset

0 commit comments

Comments
 (0)