Skip to content

Commit 16d38ef

Browse files
authored
Merge pull request #63 from tanhuaan/master
chore: fix some minor issues in comments
2 parents 696d6be + 680fd51 commit 16d38ef

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name: CI
22

33
on: [pull_request, push]
44

5-
# Cancel a job if there's a new on on the same branch started.
5+
# Cancel a job if there's a new one on the same branch started.
66
# Based on https://stackoverflow.com/questions/58895283/stop-already-running-workflow-job-in-github-actions/67223051#67223051
77
concurrency:
88
group: ${{ github.ref }}

ec-gpu-gen/src/fft_cpu.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ pub fn serial_fft<F: PrimeField>(a: &mut [F], omega: &F, log_n: u32) {
5353

5454
/// Calculate the Fast Fourier Transform on the CPU (multithreaded).
5555
///
56-
/// The result is is written to the input `a`.
56+
/// The result is written to the input `a`.
5757
/// The number of threads used will be `2^log_threads`.
5858
/// There must be more items to process than threads.
5959
pub fn parallel_fft<F: PrimeField>(

0 commit comments

Comments
 (0)