Skip to content

Commit b45f264

Browse files
committed
Spelling, typos
1 parent c7b904b commit b45f264

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

contact.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ We often have *fully-funded* positions for talented and motivated research **int
1010
- sound static analysis by abstract interpretation (improving the heart of the analysis)
1111
- compilation and code transformation (e.g., porting the analysis to new languages)
1212
- applications to cybersecurity or reverse engineering (e.g., [verifying OS kernels from C or executable](/papers/2021-rtas-no-crash-no-exploit.html))
13-
- utilisability and user interface (e.g., how to present information to make usage of the tool more productive)
13+
- usability and user interface (e.g., how to present information to make usage of the tool more productive)
1414

15-
Please contact us if you would like to join! CEA has as screening process that takes several months to complete, so do not hesitate to initiate contact early.
15+
Please contact us if you would like to join! CEA has as screening process that takes several months to complete, so do not hesitate to initiate contact early.
1616

17-
CEA is part of Université Paris-Saclay and is located at the heart of Plateau de Saclay, south of Paris, Europe's biggest research and industry cluster. Agencies like [Science Accueil](https://www.science-accueil.org/en/) or [Cité Internationale Universitaire de Paris](https://www.ciup.fr/en/) are available to help foreign candidates find their home and settle here. Most of us live either in the wooden and quiet southern suburbs of Paris or closer to the bustling historical center of the city. Paris is the capital of France, a metropolis of 12.5 million people and one of the most visited travel destinations in the world, in the heart of western Europe.
17+
CEA is part of [Université Paris-Saclay](https://www.universite-paris-saclay.fr/) and is located at the heart of the Plateau de Saclay, just south of Paris, Europe's biggest research and industry cluster. Agencies like [Science Accueil](https://www.science-accueil.org/en/) or [Cité Internationale Universitaire de Paris](https://www.ciup.fr/en/) are available to help foreign candidates find their home and settle here. Most of us live either in the wooden and quiet southern suburbs of Paris or closer to the bustling historical center of the city. Paris is the capital of France, a metropolis of 12.5 million people and one of the most visited travel destinations in the world, in the heart of western Europe.
1818

1919

2020
## Using Codex

tutorials.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,12 @@ sidebar: toc
1414
# Quick start: verifying C code using Frama-C/Codex
1515

1616
1. Download the latest binary release of Frama-C/Codex at https://github.com/codex-semantics-library/codex/releases/
17-
2. Write a small C function in file `test.c`:
17+
2. Write a small C function in file `test.c`:
1818
```c
1919
int main(int i) { int x = i; if(i > 8) x = 8; return x; }
2020
```
2121
If GCC is not installed, use `test.i` instead of `test.c` (`.i` corresponds to already-preprocessed files).
22-
3. Launch the analysis and obtain a textual report of the analysis:
22+
3. Launch the analysis and obtain a textual report of the analysis:
2323
```sh
2424
./frama_c_codex.exe -codex test.c -codex-exp-dump test.dump && cat test.dump
2525
```
@@ -34,7 +34,7 @@ Proved 0/0 regular alarms
3434
Unproved 0 regular alarms and 0 additional alarms.
3535
Solved 0/0 user assertions, proved 0
3636
```
37-
If you are using Emacs' compilation-mode (probably works also in other editors), you can click on each expression and they will bring you to the location in the file.
37+
If you are using Emacs' compilation-mode (probably works also in other editors), you can click on each expression, and they will bring you to the location in the file.
3838
4. Obtain an HTML report of the analysis:
3939
```sh
4040
./frama_c_codex.exe -codex test.c -codex-html-dump test.html
@@ -54,7 +54,7 @@ Happy verification!
5454

5555
# Tutorial: [Spatial Memory Safety using Codex and TypedC](/docs/tutorial_oopsla2024.pdf)
5656

57-
This is the tutorial accompagnying the prototype of our [OOPSLA 2024
57+
This is the tutorial accompanying the prototype of our [OOPSLA 2024
5858
research
5959
paper](/papers/2024-oopsla-typedc-dependent-nominal-physical-type-system.html). It
6060
covers all the steps necessary to use our tool to check if a C or

0 commit comments

Comments
 (0)