Skip to content

Commit 87a71b8

Browse files
committed
Update README to correct FDB name and improve description clarity
1 parent 4fea8f4 commit 87a71b8

5 files changed

Lines changed: 8 additions & 8 deletions

File tree

rust/crates/fdb-sys/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# fdb-sys
22

3-
Low-level Rust bindings to ECMWF's [FDB5](https://github.com/ecmwf/fdb) (Fields DataBase) C++ library.
3+
Low-level Rust bindings to ECMWF's [FDB](https://github.com/ecmwf/fdb) (Fields DataBase) C++ library.
44

55
This crate provides raw FFI bindings using [cxx](https://cxx.rs/). For a safe, ergonomic API, use the [`fdb`](https://crates.io/crates/fdb) crate instead.
66

rust/crates/fdb-sys/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! C++ bindings to ECMWF FDB5 library using cxx.
1+
//! C++ bindings to ECMWF's FDB (Fields DataBase) library using cxx.
22
//!
3-
//! This crate provides raw C++ bindings to FDB5. For a safe, idiomatic
3+
//! This crate provides raw C++ bindings to the FDB. For a safe, idiomatic
44
//! Rust interface, use the `fdb` crate instead.
55
66
#![allow(clippy::needless_lifetimes)]

rust/crates/fdb/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ rust-version.workspace = true
88
readme.workspace = true
99
keywords.workspace = true
1010
categories.workspace = true
11-
description = "Safe Rust wrapper for ECMWF FDB (Fields DataBase)"
11+
description = "Safe Rust wrapper for ECMWF's FDB (Fields DataBase)"
1212
links = "fdb_rpath"
1313
build = "build.rs"
1414

rust/crates/fdb/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# fdb
22

3-
Safe Rust wrapper for ECMWF's [FDB5](https://github.com/ecmwf/fdb) (Fields DataBase).
3+
Safe Rust wrapper for ECMWF's [FDB](https://github.com/ecmwf/fdb) (Fields DataBase).
44

5-
FDB is a domain-specific object store for meteorological data, developed at ECMWF for high-performance storage and retrieval of weather and climate data.
5+
The FDB is a domain-specific object store for meteorological data, developed at ECMWF for high-performance storage and retrieval of weather and climate data.
66

77
## Usage
88

rust/crates/fdb/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
//! Safe Rust wrapper for the ECMWF FDB (Fields Database) library.
1+
//! Safe Rust wrapper for ECMWF's FDB (Fields DataBase).
22
//!
3-
//! This crate provides a safe, idiomatic Rust interface to FDB,
3+
//! This crate provides a safe, idiomatic Rust interface to the FDB,
44
//! a domain-specific object store for meteorological data.
55
//!
66
//! # Example

0 commit comments

Comments
 (0)