Prechádzať zdrojové kódy

Merge pull request #59 from mssola/master

Booting: fixed typo "paramter" in the linux-bootstrap-5.md file.
0xAX 10 rokov pred
rodič
commit
92a4576a06
1 zmenil súbory, kde vykonal 2 pridanie a 2 odobranie
  1. 2 2
      Booting/linux-bootstrap-5.md

+ 2 - 2
Booting/linux-bootstrap-5.md

@@ -206,7 +206,7 @@ As i wrote above, `decompress_kernel` function is in the [arch/x86/boot/compress
 	free_mem_end_ptr = heap + BOOT_HEAP_SIZE;
 ```
 
-where `heap` is the second paramter of the `decompress_kernel` function which we got with:
+where `heap` is the second parameter of the `decompress_kernel` function which we got with:
 
 ```assembly
 leaq	boot_heap(%rip), %rsi
@@ -246,7 +246,7 @@ out:
 	return (unsigned char *)choice;
 ```
 
-which just returns `output` paramter which we passed to the `choose_kernel_location` without any changes. Let's try to understand what is it `kaslr`. We can find information about it in the [documentation](https://github.com/torvalds/linux/blob/master/Documentation/kernel-parameters.txt):
+which just returns the `output` parameter which we passed to the `choose_kernel_location` without any changes. Let's try to understand what is it `kaslr`. We can find information about it in the [documentation](https://github.com/torvalds/linux/blob/master/Documentation/kernel-parameters.txt):
 
 ```
 kaslr/nokaslr [X86]