瀏覽代碼

Merge pull request #88 from rust-osdev/readme-fix

renamed old Github urls in README
Isaac Woods 3 年之前
父節點
當前提交
3918c18723
共有 2 個文件被更改,包括 7 次插入7 次删除
  1. 3 3
      Changelog.md
  2. 4 4
      README.md

+ 3 - 3
Changelog.md

@@ -18,9 +18,9 @@
 
 # 0.9.0
 
-- Add a `checksum_is_valid` method to the RSDP tags ([#64](https://github.com/rust-osdev/multiboot2-elf64/pull/64))
+- Add a `checksum_is_valid` method to the RSDP tags ([#64](https://github.com/rust-osdev/multiboot2/pull/64))
 
 # 0.8.2
 
-- Add some basic documentation ([#62](https://github.com/rust-osdev/multiboot2-elf64/pull/62))
-- Add MemoryAreaType, to allow users to access memory area types in a type-safe way ([#61](https://github.com/rust-osdev/multiboot2-elf64/pull/61))
+- Add some basic documentation ([#62](https://github.com/rust-osdev/multiboot2/pull/62))
+- Add MemoryAreaType, to allow users to access memory area types in a type-safe way ([#61](https://github.com/rust-osdev/multiboot2/pull/61))

+ 4 - 4
README.md

@@ -1,11 +1,11 @@
-# multiboot2-elf64
-![Build](https://github.com/rust-osdev/multiboot2-elf64/actions/workflows/rust.yml/badge.svg)
+# multiboot2
+![Build](https://github.com/rust-osdev/multiboot2/actions/workflows/rust.yml/badge.svg)
 [![crates.io](https://img.shields.io/crates/v/multiboot2.svg)](https://crates.io/crates/multiboot2)
 [![docs](https://docs.rs/multiboot2/badge.svg)](https://docs.rs/multiboot2/)
 
-Library that helps you to parse the multiboot information structure (mbi) from
+Rust library that helps you to parse the multiboot information structure (mbi) from
 Multiboot2-compliant bootloaders, like GRUB. It supports all tags from the specification
-including full support for the sections of ELF-64. This library is `no_std` and can be
+including full support for the sections of ELF-64 files. This library is `no_std` and can be
 used in a Multiboot2-kernel.
 
 It follows the Multiboot 2.0 specification at https://www.gnu.org/software/grub/manual/multiboot2/multiboot.html and the ELF 64 specification at http://www.uclibc.org/docs/elf-64-gen.pdf.