Skip to content

Commit

Permalink
docs(turbopack): fix typo in incremental-computation page (#9476)
Browse files Browse the repository at this point in the history
### Description

<!--
  ✍️ Write a short summary of your work.
  If necessary, include relevant screenshots.
-->
Fix a small typo in the turbopack docs.
  • Loading branch information
jcelaya775 authored Nov 21, 2024
1 parent 52779f1 commit 0a872d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/pack-docs/incremental-computation.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Many build systems include explicit dependency graphs that must be manually popu

The difficulty of specifying an explicit dependency graph means that usually caching is done at a coarse file-level granularity. This granularity does have some benefits: less incremental results means less data to cache, which might be worth it if you have limited disk space or memory.

An example of such an architecture is [GNU Make](https://www.gnu.org/software/make/), where output targets and prerequisites are manually configured and represented as files. Systems like GNU Make miss caching opportunities due to their coarse granularity: they does not understand and cannot cache internal data structures within the compiler.
An example of such an architecture is [GNU Make](https://www.gnu.org/software/make/), where output targets and prerequisites are manually configured and represented as files. Systems like GNU Make miss caching opportunities due to their coarse granularity: they do not understand and cannot cache internal data structures within the compiler.

## Function-level fine-grained automatic incremental computation

Expand Down

0 comments on commit 0a872d7

Please sign in to comment.