Skip to content

Commit 0a5fc01

Browse files
authored
[docs] Change DeciMojo in URLs to lowercase (#35)
This pull request includes several changes to update the GitHub repository URL in various documentation and source code files. The changes ensure consistency in the project's references to its GitHub repository.
1 parent f098174 commit 0a5fc01

File tree

12 files changed

+16
-16
lines changed

12 files changed

+16
-16
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ fn main() raises:
2424
print(area) # 28.2743334
2525
```
2626

27-
The Github repo of the project is at [https://github.com/forFudan/DeciMojo](https://github.com/forFudan/DeciMojo).
27+
The Github repo of the project is at [https://github.com/forFudan/decimojo](https://github.com/forFudan/decimojo).
2828

2929
## Examples
3030

@@ -250,7 +250,7 @@ Rome wasn't built in a day. DeciMojo is currently under active development, posi
250250

251251
### Make it Fast ⏳ (IN PROGRESS & FUTURE WORK)
252252

253-
- Core arithmetic operations (+, -, *, /) have been optimized for performance, with comprehensive benchmarking reports available comparing performance against Python's built-in decimal module ([PR#16](https://github.com/forFudan/DeciMojo/pull/16), [PR#20](https://github.com/forFudan/DeciMojo/pull/20), [PR#21](https://github.com/forFudan/DeciMojo/pull/21)).
253+
- Core arithmetic operations (+, -, *, /) have been optimized for performance, with comprehensive benchmarking reports available comparing performance against Python's built-in decimal module ([PR#16](https://github.com/forFudan/decimojo/pull/16), [PR#20](https://github.com/forFudan/decimojo/pull/20), [PR#21](https://github.com/forFudan/decimojo/pull/21)).
254254
- Regular benchmarking against Python's `decimal` module (see `bench/` folder)
255255
- Performance optimization for other functions is progressing gradually but is not currently a priority
256256

@@ -270,7 +270,7 @@ If you find DeciMojo useful for your research, consider listing it in your citat
270270
author = {Zhu, Yuhao},
271271
year = {2025},
272272
title = {DeciMojo: A fixed-point decimal arithmetic library in Mojo},
273-
url = {https://github.com/forFudan/DeciMojo},
273+
url = {https://github.com/forFudan/decimojo},
274274
version = {0.1.0},
275275
note = {Computer Software}
276276
}

docs/readme_zht.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ fn main() raises:
2323
print(area) # 3622.7141989037464
2424
```
2525

26-
此項目的 Github 倉庫位於 [https://github.com/forFudan/DeciMojo](https://github.com/forFudan/DeciMojo)
26+
此項目的 Github 倉庫位於 [https://github.com/forFudan/decimojo](https://github.com/forFudan/decimojo)
2727

2828
## 示例
2929

@@ -254,7 +254,7 @@ DeciMojo 結合了 "Decimal" 和 "Mojo" 兩詞,反映了其目的(小數算
254254

255255
### 讓它快速 ⏳(進行中 & 未來工作)
256256

257-
- 核心算術運算(+, -, *, /)已針對性能進行了優化,並提供了與 Python 内置 decimal 模塊進行比較的全面基準測試報告([PR#16](https://github.com/forFudan/DeciMojo/pull/16)[PR#20](https://github.com/forFudan/DeciMojo/pull/20)[PR#21](https://github.com/forFudan/DeciMojo/pull/21))。
257+
- 核心算術運算(+, -, *, /)已針對性能進行了優化,並提供了與 Python 内置 decimal 模塊進行比較的全面基準測試報告([PR#16](https://github.com/forFudan/decimojo/pull/16)[PR#20](https://github.com/forFudan/decimojo/pull/20)[PR#21](https://github.com/forFudan/decimojo/pull/21))。
258258
- 定期對比 Python 的 `decimal` 模塊進行基準測試(見 `bench/` 文件夾)
259259
- 其他函數的性能優化正緩步進行,但不是當前優先事項
260260

@@ -274,7 +274,7 @@ DeciMojo 結合了 "Decimal" 和 "Mojo" 兩詞,反映了其目的(小數算
274274
author = {Zhu, Yuhao},
275275
year = {2025},
276276
title = {DeciMojo: A fixed-point decimal arithmetic library in Mojo},
277-
url = {https://github.com/forFudan/DeciMojo},
277+
url = {https://github.com/forFudan/decimojo},
278278
version = {0.1.0},
279279
note = {Computer Software}
280280
}

src/decimojo/__init__.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/arithmetics.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/comparison.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/decimal.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/exponential.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/prelude.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/rounding.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

src/decimojo/rounding_mode.mojo

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# ===----------------------------------------------------------------------=== #
22
# DeciMojo: A fixed-point decimal arithmetic library in Mojo
3-
# https://github.com/forFudan/DeciMojo
3+
# https://github.com/forFudan/decimojo
44
#
55
# Copyright 2025 Yuhao Zhu
66
#

0 commit comments

Comments
 (0)